/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
     * colors
     */
  
    --rich-black-fogra-29_50: hsl(210, 26%, 11%, 0.5);
    --rich-black-fogra-29-1: hsl(210, 26%, 11%);
    --rich-black-fogra-29-2: hsl(210, 50%, 4%);
    --silver-metallic: hsl(212, 9%, 67%);
    --coquelicot_20: hsla(12, 98%, 52%, 0.2);
    --coquelicot_10: hsla(12, 98%, 52%, 0.1);
    --sonic-silver: hsl(0, 0%, 47%);
    --cadet-gray: hsl(214, 15%, 62%);
    --light-gray: hsl(0, 0%, 80%);
    --coquelicot: #ac1929;
    --gainsboro: hsl(0, 0%, 88%);
    --white_20: hsl(0, 0%, 100%, 0.2);
    --white_10: hsl(0, 0%, 100%, 0.1);
    --black_10: hsl(0, 0%, 0%, 0.1);
    --white: hsl(0, 0%, 100%);
  
    /**
     * typography
     */
  
    --ff-catamaran: 'Catamaran', sans-serif;
    --ff-rubik: 'Rubik', sans-serif;
  
    --fs-1: 3.8rem;
    --fs-2: 3rem;
    --fs-3: 2.5rem;
    --fs-4: 2rem;
    --fs-5: 1.8rem;
    --fs-6: 1.5rem;
  
    --fw-900: 900;
    --fw-800: 800;
    --fw-700: 700;
    --fw-500: 500;
  
    /**
     * spacing
     */
  
    --section-padding: 80px;
  
    /**
     * shadow
     */
  
    --shadow-1: 0 0 20px var(--black_10);
    --shadow-2: 0px 10px 24px var(--coquelicot_20);
  
    /**
     * border radius
     */
  
    --radius-10: 10px;
    --radius-8: 8px;
    --radius-5: 5px;
  
    /**
     * transition
     */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
  
  }
  
  
  
  
  
  /*-----------------------------------*\
    #RESET
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a {
    text-decoration: none !important;
    color: inherit;
  }
  
  a,
  img,
  span,
  input,
  button,
  strong,
  ion-icon { display: block; }
  
  img { height: auto; }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  input { width: 100%; }
  
  button { cursor: pointer; }
  
  ion-icon { pointer-events: none; }
  
  address { font-style: normal; }
  
  html {
    font-family: var(--ff-rubik);
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--white);
    color: var(--sonic-silver);
    font-size: 1.6rem;
    line-height: 1.6;
  }

  h1 {
    font-size: 60px;
    font-family: var(--ff-catamaran);
    font-weight: var(--fw-900);
    color: #ac1929;
  }

  h2{
    font-size: 30px;
    font-family: var(--ff-catamaran);
    font-weight: var(--fw-500);
    color: #fff;
  }

  
  
  :focus-visible { outline-offset: 4px; }
  
  ::-webkit-scrollbar { width: 5px; }
  
  ::-webkit-scrollbar-track { background-color: var(--light-gray); }
  
  ::-webkit-scrollbar-thumb { background-color: var(--coquelicot); }
  
  ::-webkit-scrollbar-thumb:hover { background-color: var(--rich-black-fogra-29-1); }
  
  
  /* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 17px 30px 16px;
	color: #ffffff;
	background: #ac1929;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
}

.primary-btn.btn-normal {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.primary-btn.btn-normal:hover {
	background: #f36100;
	border-color: #f36100;
}
  
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
  .container { padding-inline: 15px; }
  
  .section { padding-block: var(--section-padding); }
  
  .dark-bg{
    background-color: #010101;
    color: var(--silver-metallic);
  }
  
  .has-bg-image {
    background-repeat: no-repeat;
    background-position: top left;
  }
  
  .has-before,
  .has-after {
    position: relative;
    z-index: 1;
  }
  
  .has-before::before,
  .has-after::after {
    content: "";
    position: absolute;
  }
  
  .h1,
  .h2,
  .h3 {
    font-family: var(--ff-catamaran);
    line-height: 1.25;
  }
  
  .h1 {
    color: var(--white);
    font-size: var(--fs-1);
    font-weight: var(--fw-900);
  }
  
  .h2,
  .h3 {
    color: var(--rich-black-fogra-29-1);
    font-weight: var(--fw-800);
  }
  
  .h2 { font-size: var(--fs-2); }
  
  .h3 { font-size: var(--fs-4); }
  
  .section-text { font-size: var(--fs-6); }
  
  .btn {
    max-width: max-content;
    font-size: var(--fs-6);
    text-transform: uppercase;
    font-weight: var(--fw-500);
    padding: 15px 35px;
    border-radius: var(--radius-8);
    transition: var(--transition-1);
  }
  
  .btn-primary {
    background-color: var(--coquelicot);
    color: var(--white);
  }
  
  .btn-primary:is(:hover, :focus) {
    background-color: var(--white);
    color: var(--coquelicot);
    box-shadow: var(--shadow-2);
  }
  
  .btn-secondary {
    background-color: var(--white);
    color: var(--coquelicot);
  }
  
  .btn-secondary:is(:hover, :focus) { background-color: var(--rich-black-fogra-29-1); }
  
  .w-100 { width: 100%; }
  
  .circle,
  .abs-img { position: absolute; }
  
  .circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -56%);
    width: 100%;
    z-index: -1;
    animation: rotate360 15s linear infinite;
  }
  
  @keyframes rotate360 {
    0% { transform: translate(-50%, -56%) rotate(0); }
    100% { transform: translate(-50%, -56%) rotate(1turn); }
  }
  
  .circle-2 { animation-direction: reverse; }
  
  .hero-subtitle,
  .section-subtitle {
    font-family: var(--ff-catamaran);
    font-weight: var(--fw-700);
    text-transform: uppercase;
    max-width: max-content;
  }
  
  .section-subtitle {
    background-color: var(--coquelicot_10);
    color: var(--coquelicot);
    padding: 8px 20px;
    border-radius: var(--radius-8);
  }
  
  .section-title { margin-block: 18px 35px; }
  
  .btn-link {
    --color: var(--white);
  
    color: var(--color);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    text-transform: uppercase;
    max-width: max-content;
    transition: var(--transition-1);
  }
  
  .btn-link::before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color);
    transition: var(--transition-1);
  }
  
  .btn-link:is(:hover, :focus) { --color: var(--coquelicot); }
  
  .text-center { text-align: center; }
  
  .img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
    overflow: hidden;
  }
  
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .has-scrollbar {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-block-end: 30px;
    scroll-snap-type: inline mandatory;
  }
  
  .scrollbar-item {
    min-width: 100%;
    scroll-snap-align: start;
  }
  
  .has-scrollbar::-webkit-scrollbar { height: 10px; }
  
  .has-scrollbar::-webkit-scrollbar-track,
  .has-scrollbar::-webkit-scrollbar-thumb { border-radius: 50px; }
  
  .has-scrollbar::-webkit-scrollbar-thumb:hover { background-color: var(--coquelicot); }
  
  .has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 25px); }
  
  
  
  
  
  /*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/
  
  .header .btn { display: none; }
  
  .header {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    box-shadow: var(--shadow-1);
    z-index: 4;
  }
  
  .header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: var(--rich-black-fogra-29-1);
    font-family: var(--ff-catamaran);
    font-size: 3.5rem;
    font-weight: var(--fw-900);
    display: flex;
    align-items: center;
    margin-inline-start: -8px;
  }
  
  
  .logo ion-icon {
    color: var(--coquelicot);
    font-size: 40px;
    transform: rotate(90deg) translate(-2px, -5px);
  }
  
  .nav-open-btn {
    background-color: var(--coquelicot);
    padding: 20px 15px;
    border-radius: var(--radius-8);
  }
  
  .nav-open-btn .line {
    background-color: var(--white);
    width: 30px;
    height: 3px;
  }
  
  .nav-open-btn .line:not(:last-child) { margin-block-end: 6px; }
  
  .nav-open-btn .line:nth-child(2) {
    width: 25px;
    margin-inline-start: auto;
  }
  
  .navbar {
    background-color: var(--coquelicot);
    color: var(--white);
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    visibility: hidden;
    transition: 0.25s var(--cubic-in);
  }
  
  .navbar.active {
    visibility: visible;
    transform: translateY(-100%);
    transition: 0.5s var(--cubic-out);
  }
  
  .nav-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background-color: var(--rich-black-fogra-29-1);
    color: var(--white);
    font-size: 40px;
    padding: 10px;
    border-radius: var(--radius-8);
  }
  
  .navbar-link {
    font-family: var(--ff-catamaran);
    font-size: var(--fs-4);
    text-align: center;
    padding-block: 10px;
    margin-block-end: 20px;
    transition: var(--transition-1);
  }
  
  .navbar-link:is(:hover, :focus, .active) { color: var(--rich-black-fogra-29-1); }
    
  
  /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/
  

  .pricing-section{
    background: #151515;
    color: var(--cadet-gray);
    font-family: var(--ff-catamaran);
    text-align: center;
    padding-block-start: calc(var(--section-padding) + 50px);
    padding-block-end: 0;
    overflow: hidden;
    flex-direction: rows;
  }

  .prices{
    margin-bottom: 15rem;
  }
  
  .pricing-section .section-title {
    margin-bottom: 56px;
  }
  
  .title-1{
    color: #ac1929;
    size: 40pt;
  }

  .ps-item {
    text-align: center;
    padding: 40px 30px 52px;
    border: 1px solid #464646;
    -webkit-transform: skewY(-4deg);
    -ms-transform: skewY(-4deg);
    transform: skewY(-4deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 30px;
    position: relative;
  }
  
  .ps-item:hover {
    background: #ffffff;
    border-color: #ffffff;
  }
  
  .ps-item:hover h3 {
    color: #111111;
  }
  
  .ps-item:hover .pi-price span {
    color: #444444;
  }
  
  .ps-item:hover ul li {
    color: #111111;
    font-weight: 600;
  }
  
  .ps-item:hover .primary-btn.pricing-btn {
    background: #ac1929;
  }
  
  .ps-item:hover .thumb-icon {
    opacity: 1;
    visibility: visible;
  }
  
  .ps-item h3 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
  }
  
  .ps-item .pi-price {
    margin-bottom: 30px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
  }
  
  .ps-item .pi-price h2 {
    font-size: 60px;
    color: #ac1929;
    font-weight: 600;
  }
  
  .ps-item .pi-price span {
    color: #c4c4c4;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .ps-item ul {
    margin-bottom: 40px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
  }
  
  .ps-item ul li {
    font-size: 14px;
    color: #c4c4c4;
    line-height: 32px;
    list-style: none;
  }
  
  .ps-item .primary-btn.pricing-btn {
    display: block;
    background: #333333;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
  }

  .primary-btn:hover{
    color: white;
  }
  
  .ps-item .thumb-icon {
    font-size: 48px;
    color: #f36100;
    position: absolute;
    left: 50px;
    bottom: 120px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
    opacity: 0;
    visibility: hidden;
  }
  









  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
  
  .footer { font-size: var(--fs-6); }
  
  .footer-top .container {
    display: grid;
    gap: 50px;
  }
  
  .footer .logo { color: var(--white); }
  
  .footer-brand-text { margin-block: 25px; }
  
  .footer-top .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-brand-list li:not(:last-child) { margin-block-end: 15px; }
  
  .footer-brand-title,
  .footer-list-title {
    color: var(--white);
    font-family: var(--ff-catamaran);
  }
  
  .footer-list-title {
    font-size: var(--fs-4);
    font-weight: var(--fw-800);
    margin-block-end: 28px;
  }
  
  .footer-list-title::before {
    bottom: 0;
    width: 70px;
    height: 1px;
    background-color: var(--coquelicot);
  }
  
  .footer-list > li:not(:first-child) { margin-block-start: 12px; }
  
  .footer-link { transition: var(--transition-1); }
  
  .footer-link:not(.address):is(:hover, :focus) { color: var(--coquelicot); }
  
  .footer-list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  
  .footer-list-item .icon {
    background-color: var(--coquelicot);
    color: var(--white);
    font-size: 24px;
    padding: 8px;
    border-radius: 50px;
  }
  
  .footer-form {
    position: relative;
    margin-block-end: 30px;
  }
  
  .footer-form .input-field {
    background-color: var(--white);
    color: var(--rich-black-fogra-29-1);
    padding-block: 18px;
    padding-inline: 30px 80px;
    border-radius: var(--radius-10);
  }
  
  .footer-form .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    padding: 0;
    font-size: 26px;
    padding-inline: 12px;
  }
  
  .footer-form .btn-primary:is(:hover, :focus) {
    background-color: var(--rich-black-fogra-29-1);
    color: var(--white);
    box-shadow: none;
  }
  
  .social-list {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    background-color: var(--white_20);
    color: var(--white);
    padding: 13px;
    border-radius: 50%;
    transition: var(--transition-1);
  }
  
  .social-link:is(:hover, :focus) { background-color: var(--coquelicot); }
  
  .footer-bottom {
    background-color: var(--rich-black-fogra-29-2);
    color: var(--white);
    text-align: center;
    padding-block: 15px;
  }
  
  .copyright-link {
    display: inline-block;
    color: var(--coquelicot);
  }
  
  .footer-bottom-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-block-start: 10px;
  }
  
  .footer-bottom-link {
    padding-inline-start: 20px;
    transition: var(--transition-1);
  }
  
  .footer-bottom-link::before {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--coquelicot);
    border-radius: 50%;
  }
  
  .footer-bottom-link:is(:hover, :focus) { color: var(--coquelicot); }
  
  
  
  
  
  /*-----------------------------------*\
    #BACK TO TOP
  \*-----------------------------------*/
  
  .back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 40px;
    background-color: var(--coquelicot);
    color: var(--rich-black-fogra-29-1);
    font-size: 20px;
    padding: 11px;
    border-radius: 50%;
    border: 2px solid var(--rich-black-fogra-29-1);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-1);
    z-index: 4;
  }
  
  .back-top-btn.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-10px);
  }
  
  
  
  
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 575px screen
   */
  
  
  @media (min-width: 575px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 5.8rem;
      --fs-2: 4rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 540px;
      width: 100%;
      margin-inline: auto;
    }
  
    .hero-subtitle,
    .section-subtitle { font-size: var(--fs-5); }
  
  
  
    /**
     * HEADER
     */
  
    .header .container {
      max-width: unset;
      padding-inline: 30px;
    }
  
  
  
    /**
     * HERO
     */
     .hero-colm-2{
     width: 832px;
     height: 630px;
     background-color: #131313;
     padding: 30px;
     border-radius: 3px;
     box-shadow: 0px 30px 50px #000;
   }
  
   .hero-colm-2 img{
    margin-left:30rem;
    margin-top: 3.5rem;
  }

     .hero-colm-3{
      width: 832px;
      height: 630px;
      background-color: #333;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
    }
  
    .hero-colm-3 img{
      margin-left:30rem;
      margin-top: 3.5rem;
    }
  

  
    /**
     * FOOTER
     */
  
    .footer-top .container {
      grid-template-columns: 1fr 1fr;
      column-gap: 25px;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-2: 4.5rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 720px; }
  
    .scrollbar-item { min-width: calc(50% - 12.5px); }
  
  
  
    /**
     * HERO
     */
  
  
  
  
    /**
     * FOOTER
     */
  
    .footer-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .footer-bottom-list { margin-block-start: 0; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * REUSED STYLE
     */
  
    .container,
    .header .container { max-width: 960px; }
  
    
  
    /**
     * HEADER
     */
  
    .nav-open-btn,
    .nav-close-btn { display: none; }
  
    .header .btn { display: block; }
  
    .header {
      background-color: transparent;
      box-shadow: none;
      padding-block: 30px;
      transition: var(--transition-1);
    }
  
    .header.active {
      transform: translateY(-100%);
      background-color: var(--white);
      padding-block: 20px;
      box-shadow: var(--shadow-1);
      animation: slideIn 0.5s ease forwards;
    }
  
    @keyframes slideIn {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(0); }
    }
  
    .header .container { gap: 30px; }
  
    .header .logo { color: var(--white); }
  
    .navbar,
    .navbar.active {
      all: unset;
      margin-inline-start: auto;
    }
  
    .navbar-list {
      display: flex;
      gap: 10px;
    }
  
    .navbar-link {
      color: var(--white);
      font-size: unset;
      padding: 0 10px;
      margin-block-end: 0;
    }
  
    .header.active .navbar-link { color: var(--rich-black-fogra-29-1); }
  
    .header .navbar-link:is(:hover, :focus, .active) { color: var(--coquelicot); }
  
    .header.active .btn {
      background-color: var(--coquelicot);
      color: var(--white);
    }
  
    .header.active .btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29-1); }
  
  
  
    /**
     * HERO
     */
     
     .hero-colm-1{
      background-color: #000 ;
      width: 310px;
      height: 630px;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0px 30px 50px #000;
      margin-left: 3rem;
    }

    .title-1 {
      margin-block: 30px 8px;
      color:var(--coquelicot) ; 
      font-size: 25pt;
   }

    .title-2 {
      font-size: 20pt;
      margin-block: 30px 8px;
      color:var(--white) ; 
   }

    #sp-1{
      color: #f5d10d;
      font-size: 10pt;
     }
    
     #sp-2{
        color: #4dc247 ;
        font-size: 10pt;
      }
    
      #sp-3{
        color: #e60000;
        font-size: 10pt;
      }
    
      #sp-4{
        color: #ff6600 ;
        font-size: 10pt;
      }

    .hero-colm-2{
      width: 310px;
      height: 630px;
      background-color: #131313;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
    }

    .hero-colm-2 img{
      display: none;
    }
  
    .hero-colm-3{
      width: 311px;
      height: 630px;
      background-color: #333;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
    }
  
    .hero-colm-3 img{
      display: none;
    }
  
    /**
     * FOOTER
     */
  
    .footer-top .container {
      grid-template-columns: 0.85fr 0.5fr 1fr 0.85fr;
      column-gap: 50px;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 7rem;
      --fs-2: 5.5rem;
      --fs-4: 2.2rem;
      --fs-5: 2rem;
  
      /**
       * spacing
       */
  
      --section-padding: 120px;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container,
    .header .container { max-width: 1140px; }
  
    .btn {
      padding: 18px 45px;
      border-radius: var(--radius-10);
    }
  
    .section-subtitle { --fs-5: 2.2rem; }
  
    .has-scrollbar { gap: 30px; }
  
    .scrollbar-item { min-width: calc(33.33% - 20px); }
  
  
  
    /**
     * HEADER
     */
  
    .header .container { padding-inline: 0; }
  
  
  
    /**
     * HERO
     */
  
     .hero-colm-1{
      background-color: #000 ;
      width: 380px;
      height: 630px;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0px 30px 50px #000;
      margin-left: 3rem;
    }

    .title-1 {
      margin-block: 30px 8px;
      color:var(--coquelicot) ; 
      font-size: 35pt;
   }

    .title-2 {
      font-size: 30pt;
      margin-block: 30px 8px;
      color:var(--white) ; 
   }

    #sp-1{
      color: #f5d10d;
      font-size: 12pt;
     }
    
     #sp-2{
        color: #4dc247 ;
        font-size: 12pt;
      }
    
      #sp-3{
        color: #e60000;
        font-size: 12pt;
      }
    
      #sp-4{
        color: #ff6600 ;
        font-size: 12pt;
      }

    .hero-colm-2{
      width: 380px;
      height: 630px;
      background-color: #131313;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
    }

    .hero-colm-2 img{
      display: none;
    }
  
    .hero-colm-3{
      width: 380px;
      height: 630px;
      background-color: #333;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
    }
  
    .hero-colm-3 img{
      display: none;
    }
  
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .container { grid-template-columns: 1fr 0.6fr 0.9fr 1fr; }
  
  }

  @media (min-width: 1600px) {
   
    .hero-colm-1{
      background-color: #000 ;
      width: 832px;
      height: 630px;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0px 30px 50px #000;
      margin-left: 3rem;
      text-align: left;
    }

    .title-1 {
      margin-block: 30px 8px;
      color:var(--coquelicot) ; 
      font-size: 35pt;
   }

    .title-2 {
      font-size: 30pt;
      margin-block: 30px 8px;
      color:var(--white) ; 
   }

    #sp-1{
      color: #f5d10d;
      font-size: 12pt;
     }
    
     #sp-2{
        color: #4dc247 ;
        font-size: 12pt;
      }
    
      #sp-3{
        color: #e60000;
        font-size: 12pt;
      }
    
      #sp-4{
        color: #ff6600 ;
        font-size: 12pt;
      }

    .hero-colm-2{
      width: 380px;
      height: 630px;
      background-color: #131313;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
      text-align: left;
    }

    .hero-colm-2 img{
      display: block;
    }
  
    .hero-colm-3{
      width: 380px;
      height: 630px;
      background-color: #333;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
      text-align: left;
    }
  
    .hero-colm-3 img{
      display: block;

    }

  }

  @media (min-width: 1800px) {
   
    .hero-colm-1{
      background-color: #000 ;
      width: 832px;
      height: 630px;
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0px 30px 50px #000;
      margin-left: 4rem;
      text-align: left;
    }

    .title-1 {
      margin-block: 30px 8px;
      color:var(--coquelicot) ; 
      font-size: 45pt;
   }

   .section-text{
    font-size: 14pt;
   }

    .title-2 {
      font-size: 30pt;
      margin-block: 30px 8px;
      color:var(--white) ; 
   }

    #sp-1{
      color: #f5d10d;
      font-size: 14pt;
     }
    
     #sp-2{
        color: #4dc247 ;
        font-size: 14pt;
      }
    
      #sp-3{
        color: #e60000;
        font-size: 14pt;
      }
    
      #sp-4{
        color: #ff6600 ;
        font-size: 14pt;
      }

    .hero-colm-2{
      width: 441px;
      height: 630px;
      background-color: #131313;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
      text-align: left;
    }

    .hero-colm-2 img{
      display: block;
      margin-left: 17rem;
      margin-top: 2.2rem;
    }
  
    .hero-colm-3{
      text-align: left;
      width: 441px;
      height: 630px;
      background-color: #333;
      padding: 30px;
      border-radius: 3px;
      box-shadow: 0px 30px 50px #000;
    }
  
    .hero-colm-3 img{
      display: block;
      margin-left: 17rem;
      margin-top: 2.2rem;
    }

  }

  @media (min-width: 1920px) {
    .hero-colm-1{
      margin-left: 9rem;
    }
  }